home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / pgpwin11 / pgpr.frm < prev    next >
Text File  |  1995-05-08  |  1KB  |  41 lines

  1. VERSION 2.00
  2. Begin Form PGPR 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "PGP Reader"
  5.    ClientHeight    =   2580
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1485
  8.    ClientWidth     =   4890
  9.    Height          =   2985
  10.    Icon            =   PGPR.FRX:0000
  11.    Left            =   1035
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    ScaleHeight     =   2580
  16.    ScaleWidth      =   4890
  17.    Top             =   1140
  18.    Width           =   5010
  19. End
  20. Dim ispgp As Integer
  21.  
  22. Sub Form_Load ()
  23.     If LTrim$(RTrim$(Command$)) = "" Then
  24.         i% = MsgBox("Usage: pgpr filename")
  25.         End
  26.     End If
  27.  
  28.     i% = Shell("notepad " + Command$, 1)
  29.     
  30.     ispgp = 0
  31.     Open Command$ For Input As #1
  32.     While Not (ispgp Or EOF(1))
  33.      Input #1, l$
  34.      If InStr(l$, "-----BEGIN PGP") Then ispgp = 1
  35.     Wend
  36.     Close (1)
  37.     If ispgp Then i% = Shell("pgpread.pif " + Command$, 1)
  38.     End
  39. End Sub
  40.  
  41.